mangling$550479$ - traduzione in greco
Diclib.com
Dizionario ChatGPT
Inserisci una parola o una frase in qualsiasi lingua 👆
Lingua:

Traduzione e analisi delle parole tramite l'intelligenza artificiale ChatGPT

In questa pagina puoi ottenere un'analisi dettagliata di una parola o frase, prodotta utilizzando la migliore tecnologia di intelligenza artificiale fino ad oggi:

  • come viene usata la parola
  • frequenza di utilizzo
  • è usato più spesso nel discorso orale o scritto
  • opzioni di traduzione delle parole
  • esempi di utilizzo (varie frasi con traduzione)
  • etimologia

mangling$550479$ - traduzione in greco

ALGORITHMICALLY MODIFYING DATA BELOW THE WORD LEVEL
Bit twiddle; Bit bashing; Bit twiddling; Bit diddling; Bit twisting; Bit fiddling; Bit fiddle; Bit diddle; Bit twistle; Bit bash; Bit wrangling; Bit wrangle; Bit mangling; Bit mangle; Bit hustling; Bit hustle; Twiddling of bits; Wrangling of bits; Mangling of bits; Bashing of bits; Diddling of bits; Twisting of bits; Fiddling of bits; Hustling of bits; Twiddling bits; Wrangling bits; Mangling bits; Bashing bits; Diddling bits; Twisting bits; Fiddling bits; Hustling bits

mangling      
κατακρεούργηση, ξέσχισμα

Definizione

Mangling
·p.pr. & ·vb.n. of Mangle.

Wikipedia

Bit manipulation

Bit manipulation is the act of algorithmically manipulating bits or other pieces of data shorter than a word. Computer programming tasks that require bit manipulation include low-level device control, error detection and correction algorithms, data compression, encryption algorithms, and optimization. For most other tasks, modern programming languages allow the programmer to work directly with abstractions instead of bits that represent those abstractions. Source code that does bit manipulation makes use of the bitwise operations: AND, OR, XOR, NOT, and possibly other operations analogous to the boolean operators; there are also bit shifts and operations to count ones and zeros, find high and low one or zero, set, reset and test bits, extract and insert fields, mask and zero fields, gather and scatter bits to and from specified bit positions or fields. Integer arithmetic operators can also effect bit-operations in conjunction with the other operators.

Bit manipulation, in some cases, can obviate or reduce the need to loop over a data structure and can give many-fold speed ups, as bit manipulations are processed in parallel.